From: Richard M. Stallman Date: Mon, 26 Mar 2007 03:30:53 +0000 (+0000) Subject: (byte-compile-file-form-defmumble): Use prin1 instead of princ. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~1336 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b0f6a1039eacb103af151c8e07e4dc699f2114a1;p=emacs.git (byte-compile-file-form-defmumble): Use prin1 instead of princ. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f74e48c4635..31d21fd8720 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2341,7 +2341,7 @@ list that represents a doc string reference. (eq (car (car (cdr tail))) 'declare)) (let ((declaration (car (cdr tail)))) (setcdr tail (cdr (cdr tail))) - (princ `(if macro-declaration-function + (prin1 `(if macro-declaration-function (funcall macro-declaration-function ',name ',declaration)) outbuffer)))))